body {
    font-family: Arial, sans-serif;
    background-color:Linen;
}


/* * {
  border: .5px solid SlateGray;
  margin-bottom:.5%;
} */

* {
  margin: 0;
  box-sizing: border-box;
}

h1 {
    color:SaddleBrown;
}

header { 
    font-family: Arial, sans-serif;
    text-align:right;
    background-color: White;
    padding:.5px;
    margin-right:5px;
    padding-right:2%;
}

/* The navbar container */
.topnav{
  overflow: hidden;
  background-color: rgba(100,100,100,.7);
  font-family: Arial, sans-serif;
  padding-right:2%; 
}

/* Navbar links */
.topnav a{
  float: right;
  display: block;
  color: linen;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Links - change color on hover */
.topnav a:hover {
  background-color: rgba(30,30,30,.3);
  color: black;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: right;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: linen;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add the same mid grey background color to navbar links on hover  as for the other nav items*/
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color:rgba(30,30,30,.3);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 4px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


h2, #page title  {
    text-align: left;
    margin-left: 5%;
    margin-bottom: 0%;
}

p {
  font-family: Arial;
  align: left;
  color:DarkSlateGray;
  min-width: 250px;
  /*max-width: 400px;*/
  padding: 5px 5px;
}

/*h1 {
    color:SaddleBrown;
}*/



/*Start of Contact page section*/


input[type=text], select, textarea {
  width:90%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color:rgba(30,30,30,.6);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


/* When moving the mouse over the submit button, add a darker grey color */
input[type=submit]:hover {
  background-color:  #708090;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: lightgrey;
  width: 50%;
  border: 15px solid #bbb;
  padding: 10px;
  margin: auto;
}

    /* Responsive styling for smaller screens */
    @media (max-width: 768px) {
      .container {
        width: 80%; /* Adjust width for smaller screens */
      }
    }

    @media (max-width: 480px) {
     .container {
        width: 95%; /* Further adjust width for very small screens */
      }
    }



